-
Notifications
You must be signed in to change notification settings - Fork 1.9k
refactor(mcp): consolidate MCP server auto-configuration modules and introduce protocol-based configuration #4211
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…introduce protocol-based configuration - Consolidate multiple MCP server modules into unified webmvc/webflux modules - Move properties classes from separate module into mcp-server-common - Merge stateless auto-configuration into common module - Replace transport-specific modules with protocol-based configuration - Add ServerProtocol enum (SSE, STREAMABLE, STATELESS) for protocol selection - Rename ServerType to ApiType for clarity - Update conditional configuration to use protocol-based conditions - Remove separate streamable/stateless starter modules - Update documentation to reflect unified protocol-based approach - Simplify module structure while maintaining backward compatibility through configuration This refactoring reduces complexity by consolidating 7+ modules into 3 main modules (common, webmvc, webflux) while providing the same functionality through the spring.ai.mcp.server.protocol configuration property. Signed-off-by: Christian Tzolov <[email protected]> Co-authored-by: yinh <[email protected]>
6a48c45
to
f4b9088
Compare
Signed-off-by: Christian Tzolov <[email protected]>
…introduce protocol-based configuration (#4211) - Consolidate multiple MCP server modules into unified webmvc/webflux modules - Move properties classes from separate module into mcp-server-common - Merge stateless auto-configuration into common module - Replace transport-specific modules with protocol-based configuration - Add ServerProtocol enum (SSE, STREAMABLE, STATELESS) for protocol selection - Rename ServerType to ApiType for clarity - Update conditional configuration to use protocol-based conditions - Remove separate streamable/stateless starter modules - Update documentation to reflect unified protocol-based approach - Simplify module structure while maintaining backward compatibility through configuration This refactoring reduces complexity by consolidating 7+ modules into 3 main modules (common, webmvc, webflux) while providing the same functionality through the spring.ai.mcp.server.protocol configuration property. Signed-off-by: Christian Tzolov <[email protected]> Co-authored-by: yinh <[email protected]>
Rebased and merged at e71da4e |
Hi @tzolov, |
…introduce protocol-based configuration (spring-projects#4211) - Consolidate multiple MCP server modules into unified webmvc/webflux modules - Move properties classes from separate module into mcp-server-common - Merge stateless auto-configuration into common module - Replace transport-specific modules with protocol-based configuration - Add ServerProtocol enum (SSE, STREAMABLE, STATELESS) for protocol selection - Rename ServerType to ApiType for clarity - Update conditional configuration to use protocol-based conditions - Remove separate streamable/stateless starter modules - Update documentation to reflect unified protocol-based approach - Simplify module structure while maintaining backward compatibility through configuration This refactoring reduces complexity by consolidating 7+ modules into 3 main modules (common, webmvc, webflux) while providing the same functionality through the spring.ai.mcp.server.protocol configuration property. Signed-off-by: Christian Tzolov <[email protected]> Co-authored-by: yinh <[email protected]>
This refactoring reduces complexity by consolidating 7+ modules into 3 main modules (common, webmvc, webflux) while providing the same functionality through the spring.ai.mcp.server.protocol configuration property.